-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 881 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
import setuptools
setuptools.setup(
name='happypandax-client',
version='1.0.0',
author="Twiddly",
author_email="[email protected]"
description='Client library for communicating with HappyPanda X servers',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url='https://github.com/happypandax/py-client',
license='MIT',
packages=setuptools.find_packages(),
include_package_data=True,
zip_safe=True,
test_suite='happypandax_client.tests',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries'
],
)