forked from flaport/photontorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 1 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
import setuptools
import photontorch
try:
with open("README.md", "r") as f:
long_description = f.read()
except FileNotFoundError:
long_description = photontorch.__doc__
setuptools.setup(
name="photontorch",
version=photontorch.__version__,
author="Floris Laporte",
author_email="[email protected]",
description=photontorch.__doc__.split("\n")[0],
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/flaport/photontorch",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2.7",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)