-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
49 lines (40 loc) · 1.34 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
"""The setup script."""
import setuptools
with open("README.md", "r", encoding='utf8') as fh:
readme = fh.read()
with open('HISTORY.rst', "r", encoding='utf8') as history_file:
history = history_file.read()
requirements = [
]
setup_requirements = [
]
tests_requirements = [
]
setuptools.setup(
name="pytorch-complex",
version="0.1.2",
author="Soumick Chatterjee",
author_email="soumick.chatterjee@ovgu.de",
description="Complex Modules for PyTorch",
long_description=readme + '\n\n' + history,
long_description_content_type="text/markdown",
url="https://github.com/soumickmj/pytorch-complex",
packages=setuptools.find_packages(include=['torchcomplex', 'torchcomplex.*']),
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=requirements,
setup_requires=setup_requirements,
tests_require=tests_requirements,
license='MIT license',
include_package_data=True,
)