-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 1002 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 1002 Bytes
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
from setuptools import setup, find_packages
from dashactylpy import __version__
long_desc = ''
with open('./README.md') as f:
s = f.readlines()
long_desc = '\n'.join(s)
del s
setup(name='dashactylpy',
author='Devonte',
url='https://github.com/devnote-dev/dashactyl.py',
license='MIT',
version=__version__,
packages=find_packages('dashactylpy'),
description='An interactive API wrapper for Dashactyl in Python.',
long_description=long_desc,
long_desription_content_type='text/markdown',
include_package_data=True,
install_requires=['requests'],
python_requires='>=3.8.0',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'])