forked from josiahwsmith10/complextorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1.15 KB
/
setup.py
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding = "utf-8") as fh:
long_description = fh.read()
setup(
name = "complextorch",
version = "1.0.0", # update index.rst, conf.py, and complextorch/__init__.py
author = "Josiah W. Smith",
author_email = "[email protected]",
description = "A lightweight complex-valued neural network package built on PyTorch",
long_description = long_description,
long_description_content_type = "text/markdown",
url="https://www.github.com/josiahwsmith10/complextorch",
packages=find_packages(),
project_urls = {
"Bug Tracker": "https://github.com/josiahwsmith10/complextorch/issues",
"Documentation": "https://complextorch.readthedocs.io/en/latest/index.html",
"GitHub": "https://github.com/josiahwsmith10/complextorch",
},
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
package_dir = {"": "."},
python_requires = ">=3.6",
install_requires=[
"numpy"
]
)