-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (53 loc) · 1.95 KB
/
setup.py
File metadata and controls
58 lines (53 loc) · 1.95 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import os
from setuptools import setup
from setuptools.command.bdist_egg import bdist_egg
class SimpleAzureInstall(bdist_egg):
def run(self):
bdist_egg.run(self)
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read().decode('utf8')
#reqs = [line.strip() for line in open('requirements.txt')]
setup(
name = "simpleazure",
version = "0.1.5",
author = "Hyungro Lee",
author_email = "hroe.lee@gmail.com",
description = ("Python Library for Windows Azure"),
license = "GPLv3",
keywords = "SimpleAzure, Azure, Template deployment",
url = "http://simple-azure.readthedocs.io/",
packages = [
'simpleazure',
'simpleazure/ext',
'simpleazure/template',
'simpleazure/plugin',
],
install_requires = [
"azure==2.0.0rc6",
"pyaml",
"fabric",
"haikunator", # random name generator
"sh",
"cython", # for pandas
"pandas", # will be replaced
"datadiff",
"python-editor"
],
# reqs is removed and pip install -r requirements.txt added
# because 'import azure' wrongly imported from azure-nspkg package
dependency_links = ['https://github.com/Azure/azure-sdk-for-python.git'],
long_description = read('README.rst'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
],
entry_points='''
[console_scripts]
''',
cmdclass={'bdist_egg': SimpleAzureInstall}, # override bdist_egg
)