-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 1.12 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
from pathlib import Path
from pkg_resources import parse_requirements
from setuptools import find_packages, setup
for path in Path('./').rglob('requirements.txt'):
with Path(path).open() as requirements_txt:
install_requires = [
str(requirement)
for requirement
in parse_requirements(requirements_txt)
]
config = {
"description": "Simplified data pipeline blueprints for working with CSV files.",
"author": "Shipyard Team",
"url": "https: // www.shipyardapp.com",
"author_email": "tech@shipyardapp.com",
"packages": find_packages(),
"install_requires": install_requires,
"name": "filemanipulation-blueprints",
"version": "v0.1.0",
"license": "Apache-2.0",
"classifiers": [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Other Audience",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
"python_requires": ">=3.7"}
setup(**config)