-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
66 lines (49 loc) · 1.86 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# -*- encoding: utf-8 -*-
"""
Python setup file for the nicedit app.
In order to register your app at pypi.python.org, create an account at
pypi.python.org and login, then register your new app like so:
python setup.py register
If your name is still free, you can now make your first release but first you
should check if you are uploading the correct files:
python setup.py sdist
Inspect the output thoroughly. There shouldn't be any temp files and if your
app includes staticfiles or templates, make sure that they appear in the list.
If something is wrong, you need to edit MANIFEST.in and run the command again.
If all looks good, you can make your first release:
python setup.py sdist upload
For new releases, you need to bump the version number in
tornado_botocore/__init__.py and re-run the above command.
For more information on creating source distributions, see
http://docs.python.org/2/distutils/sourcedist.html
Using twine:
python setup.py bdist_wheel --universal
python setup.py sdist
twine upload dist/*
"""
import fileinput
import os
import tornado_botocore as app
from setuptools import setup, find_packages
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return ''
REQUIREMENTS = [line for line in fileinput.input(files=['requirements.txt'])]
setup(
name="tornado-botocore",
version=app.__version__,
description=read('DESCRIPTION'),
long_description=read('README.rst'),
license='The MIT License',
platforms=['OS Independent'],
keywords='tornado, botocore, async boto, amazon, aws',
author='Oleksandr Polieno',
author_email='[email protected]',
url="https://github.com/nanvel/tornado-botocore",
packages=find_packages(),
package_data={'': ['requirements.txt']},
include_package_data=True,
install_requires=REQUIREMENTS,
)