-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (31 loc) · 1.14 KB
/
setup.py
File metadata and controls
38 lines (31 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from setuptools import setup, find_packages
from os.path import dirname, join, realpath
from textwrap import dedent
PROJECT_ROOT = dirname(realpath(__file__))
REQUIREMENTS_FILE = join(PROJECT_ROOT, "requirements.txt")
with open(REQUIREMENTS_FILE) as f:
install_reqs = f.read().splitlines()
install_reqs.append("setuptools")
setup(
name='geoviz',
version='1.0.0',
author='Francesco Pierpaoli',
author_email='[email protected]',
url="https://github.com/fpier21/geoviz",
description='A library for the geometric visualization of the transformations inside a feedforward neural network',
packages=find_packages(),
install_requires=install_reqs,
long_description=dedent(
"""\
A library for the geometric visualization
of the transformations inside a feedforward neural network
Contact
=============
If you have any questions or something to report, feel free to write me at
email: [email protected]
This project is hosted at https://github.com/fpier21/geoviz
The documentation can be found at
--------
"""
),
)