-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 1.11 KB
/
setup.py
File metadata and controls
32 lines (29 loc) · 1.11 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
from setuptools import setup, Distribution, find_packages
setup(name='hackforces',
version='0.0.2',
description='Python library for Hackforces project',
url='http://github.com/hackforces/hackforces-python',
author='Alexey Rodionov',
author_email='no-reply@hackforces.com',
license='GNU Affero General Public License v3 or later (AGPLv3+)',
packages=find_packages(exclude=['dist','build','*.pyc', '.DS_Store', '.vscode', '__pycache__', '*.bak']),
package_data={
'hackforces': ['*.py']
},
install_requires=[
'requests>=2.8.0'
],
classifiers=[
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Environment :: Console',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5'
],
project_urls={
"GitHub": "https://github.com/hackforces",
},
zip_safe=False,
)