-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 1.22 KB
/
setup.py
File metadata and controls
40 lines (35 loc) · 1.22 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
39
40
#!/usr/bin/env python
"""The setup script."""
import setuptools
with open("README.md", "r", encoding="utf8") as fh:
readme = fh.read()
try:
with open("HISTORY.rst", "r", encoding="utf8") as history_file:
history = history_file.read()
except FileNotFoundError:
history = ""
setuptools.setup(
name="pytorch-complex",
version="0.2.0",
author="Soumick Chatterjee",
author_email="contact@soumick.com",
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=[],
license="MIT",
include_package_data=True,
)