-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
26 lines (24 loc) · 809 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
from setuptools import setup, find_packages
for line in open('dosa/__init__.py'):
if line.startswith('__version__'):
version = line.split('=')[-1].strip()[1:-1]
break
setup(
name='dosa',
version=version,
url='https://github.com/shon/dosa/',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3'
],
include_package_data=True,
description='Python wrapper for Digital Ocean API V2',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages(),
author='Shekhar Tiwatne',
author_email='pythonic@gmail.com',
license="http://www.opensource.org/licenses/mit-license.php",
test_suite="tests",
install_requires=['requests']
)