-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
30 lines (26 loc) · 1.09 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
import pathlib
from setuptools import setup, find_packages
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
with open('requirements.txt') as f:
content = f.readlines()
requirements = [x.strip() for x in content if 'git+' not in x]
setup(name='packgenlite',
version="1.1.3",
# Below to deal with cleaner versionning
#setup_requires=['setuptools_scm'],
install_requires=requirements,
#use_scm_version={'write_to': 'packgenlite/version.txt'},
description="Package builder for Data Science projects derived from https://github.com/lologibus2/wagon_tools",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/krokrob/packgenlite",
author='Kevin Robert', author_email="[email protected]",
packages=find_packages(),
test_suite='tests',
# include_package_data: to install data from MANIFEST.in
include_package_data=True,
scripts=['scripts/packgenlite'],
zip_safe=False)