-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 932 Bytes
/
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
#!/usr/bin/env python
"""
# Author: Kui XU
# Created Time : Mon 3 Jul 2017 09:42:31 PM CST
# File Name: setup.py
# Description:
"""
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(name='prismnet',
version='0.1.1',
description='PrismNet',
packages=find_packages(),
author='Kui XU',
author_email='[email protected]',
url='https://github.com/kuixu/PrismNet',
install_requires=requirements,
python_requires='>3.6.0',
classifiers=[
'Development Status :: 1 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: CentOS :: Linux',
],
)