-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (26 loc) · 812 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from pathlib import Path
repository_directory = Path(__file__).parent
long_description = (repository_directory / "README.md").read_text()
setup(
name='pyDroidDepot',
description="Module for controlling droids built and purchased at the Droid Depot in Disney's Galaxys Edge",
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
version='1.1.0',
author='Jordan Maxwell',
maintainer='Jordan Maxwell',
url='https://github.com/thetestgame/pyDroidDepot',
packages=['droiddepot'],
classifiers=[
'Programming Language :: Python :: 3',
],
install_requires=[
'bleak==0.20.2',
'pydBeacon==1.0.0',
]
)