-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 888 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
import os
from setuptools import setup, find_packages
def requirements():
"""Build the requirements list for this project"""
requirements_list = []
with open('requirements.txt') as requirements:
for install in requirements:
requirements_list.append(install.strip())
return requirements_list
setup(name='discord_simple',
version='0.0.1.17',
license='LGPLv3',
description='Discord simple API',
author='Alexander N. Skovpen',
author_email='[email protected]',
url='https://github.com/askovpen/discord_simple/',
install_requires=requirements(),
packages=find_packages(exclude=['tests*']),
include_package_data=True,
extras_require={
'json': 'ujson',
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
]
)