-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
36 lines (28 loc) · 909 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
35
36
from setuptools import setup
setup(
name='NightPy',
version='2018.1.1',
description='NightBot API wrapper.',
# The project's main homepage.
url='https://www.IamGregAmato.com',
# Author details.
author='Greg Amato',
author_email='amatobahn@gmail.com',
# License
license='Apache License v2.0',
# Classifiers
classifiers=[
# Project Stage:
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only',
],
# Keywords
keywords=['NightPy', 'NightBot', 'Amatobahn', 'API'],
packages=['NightPy'],
# Required dependencies. Will be installed by pip
# when the project is installed.
install_requires=['requests'],
)