-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (37 loc) · 1.4 KB
/
setup.py
File metadata and controls
45 lines (37 loc) · 1.4 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
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/laerteallan
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
from os import path
import os
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
packages = open("requirements.txt").readlines()
reqs = [package.strip('\n') for package in packages]
here = path.abspath(path.dirname(__file__))
setup(
name='tornado_elastic',
version='0.0.1',
description='Project Apm Elastic for tornado-framework',
author='Neighbors LTDA',
author_email='laerte.allan@gmail.com',
classifiers=[ # Optional
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
include_package_data=True,
package_dir={here: 'tornado_elastic'},
keywords='sample setuptools development',
packages=find_packages(here, exclude=['contrib', 'docs', 'tests', 'main.py', 'requirements-dev.txt']),
package_data={'tornado_elastic': ['*']},
install_requires=reqs, # Optional
)