-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
43 lines (39 loc) · 1.25 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
'''Module setup'''
from setuptools import setup
'''
packaging modeled after
https://hynek.me/articles/sharing-your-labor-of-love-pypi-quick-and-dirty/
'''
def read(filename):
'''Read content from file'''
return open(filename).read()
setup(
name='vultr',
version='1.0.1',
install_requires=[
"requests"
],
description='Vultr.com API Client',
long_description=(read('README.md')),
long_description_content_type='text/markdown',
url='http://github.com/spry-group/python-vultr',
author='Darrel O\'Pry',
author_email='[email protected]',
packages=['vultr'],
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules'
],
license=read('LICENSE'),
test_suite='tests'
)