forked from sousa-andre/lcu-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 643 Bytes
/
setup.py
File metadata and controls
27 lines (22 loc) · 643 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
from setuptools import setup
__version__ = '3.0.0'
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='lcu-driver',
version=__version__,
author='André Matos de Sousa',
author_email='andrematosdesousa@gmail.com',
license='MIT',
url='https://github.com/sousa-andre/lcu-driver/',
long_description_content_type='text/markdown',
long_description=long_description,
packages=['lcu_driver', 'lcu_driver.events'],
install_requires=[
'aiohttp',
'psutil'
],
project_urls={
'Source': 'https://github.com/sousa-andre/lcu-driver/'
}
)