forked from dwarszawski/amundsen-atlas-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (47 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
__version__ = '1.2.2'
import os
import sys
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
sys.path.insert(0, here)
with open(os.path.join(here, 'README.md')) as readme_file:
readme = readme_file.read()
requirements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements.txt')
with open(requirements_path) as requirements_file:
requirements = requirements_file.readlines()
requirements_dev_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements-dev.txt')
with open(requirements_dev_path) as requirements_file:
requirements_dev = requirements_file.readlines()
setup_args = dict(
name='amundsenatlastypes',
version=__version__,
description=('Custom Amundsen Atlas data types definition'),
long_description=readme,
long_description_content_type='text/markdown',
author='Damian Warszawski',
maintainer='Mariusz Górski',
maintainer_email='[email protected]',
url='https://github.com/dwarszawski/amundsen-atlas-types',
packages=find_packages(include=['amundsenatlastypes']),
include_package_data=True,
install_requires=requirements,
extras_require={
'dev': requirements_dev,
'samples': ['faker']
},
license='Apache Software License 2.0',
zip_safe=False,
keywords='apache atlas, atlas types, amundsen, amundsen atlas',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
)
setup(**setup_args)