-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
33 lines (29 loc) · 1.48 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
# type: ignore
"""Package deployment script."""
import setuptools
from auraxium import __version__ as version
with open('./README.md', encoding='utf-8') as file_:
long_description = file_.read()
with open('./requirements.txt', encoding='utf-8') as file_:
install_requires = file_.read().splitlines()
setuptools.setup(name='auraxium',
version=version,
author='Leonhard S.',
author_email='[email protected]',
description='A python wrapper for the PlanetSide 2 Census API.',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='auraxium python daybreak census planetside ps2',
url='https://github.com/leonhard-s/auraxium',
packages=setuptools.find_packages(),
package_data={'auraxium': ['py.typed']},
classifiers=['Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'],
install_requires=install_requires,
license='MIT',
include_package_data=True,
zip_safe=False)