-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (27 loc) · 887 Bytes
/
setup.py
File metadata and controls
39 lines (27 loc) · 887 Bytes
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
import os
from setuptools import find_packages
from setuptools import setup
def parse_requirements(filename):
with open(filename) as requirements_file:
return requirements_file.readlines()
setup(
# Application name:
name="datatools",
# Version number (initial):
version="0.3.0",
# Application author details:
author="tutunannan",
author_email="bd66_6@hotmail.com",
# Packages
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
# Include additional files into the package
include_package_data=True,
# Details
# url="http://pypi.abc.com/pypi/datatools_v030",
#
# license="LICENSE.txt",
description="Simple ETL Data Tools",
long_description=open("README.md").read(),
# Dependent packages (distributions)
install_requires=parse_requirements('requirements.txt'),
)