-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 730 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 730 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
config = {
'name': 'mitsPy',
'author': 'Avraham David Gelbfish',
'author_email': 'adg@adgelb.fish',
'url': '',
'description': '',
'long_description': open('README.rst', 'r').read(),
'license': 'MIT',
'version': '0.1.9',
'classifiers': [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha",
],
'packages': find_packages(),
}
if __name__ == '__main__':
setup(**config, install_requires=['xmltodict', 'aiohttp'])