-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 1.07 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
from setuptools import setup, find_packages
with open('./README.md') as fp:
description = fp.read()
with open('requirements.txt') as reqs:
requirements = reqs.readlines()
setup(
name='paa191t1',
description='Python Library for first poggi homework',
long_description=description,
#version='0.0.1',
author='paa da depressao',
url='https://github.com/arnour/PAA-2926-2019',
packages=find_packages(exclude=['tests']),
include_package_data=True,
install_requires=requirements,
license='Apache 2',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Operating System :: Unix',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Education'
]
)