forked from pongthep/atlas-metadata-extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 1011 Bytes
/
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
from distutils.core import setup
from setuptools import Extension, find_packages
setup(
name='atlas-metadata-extractor',
packages=find_packages(),
version='0.0.4',
license='MIT',
description='This project is used for extract metadata from data source',
# Give a short description about your library
author='pongthepv',
author_email='mr.pongthep@gmail.com',
url='https://github.com/pongthep/atlas-metadata-extractor',
download_url='https://github.com/pongthep/atlas-metadata-extractor/archive/v0.0.4.tar.gz',
# I explain this later on
keywords=['apache atlas', 'atlas', 'extractor'],
install_requires=[
'psycopg2-binary',
'requests',
'mysql-connector-python',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)