-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
39 lines (34 loc) · 1.17 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
"""
This files originate from the "New-Empty-Python-Project-Base" template:
https://github.com/Neuraxio/New-Empty-Python-Project-Base
Created by Guillaume Chevalier at Neuraxio:
https://github.com/Neuraxio
https://github.com/guillaume-chevalier
License: CC0-1.0 (Public Domain)
"""
from setuptools import setup, find_packages
with open('README.md') as _f:
_README_MD = _f.read()
_VERSION = '0.1'
setup(
name='project', # TODO: rename.
version=_VERSION,
description='An empty project base.',
long_description=_README_MD,
classifiers=[
# TODO: typing.
"Typing :: Typed"
],
url='https://github.com/..../....', # TODO.
download_url='https://github.com/.../.../tarball/{}'.format(_VERSION), # TODO.
author='Neuraxio Inc.', # TODO.
author_email='[email protected]', # TODO.
packages=find_packages(include=['project*']), # TODO.
test_suite="testing",
setup_requires=["pytest-runner"],
tests_require=["pytest", "pytest-cov"],
install_requires=["neuraxle"],
include_package_data=True,
license='TODO', # TODO: set your license string.
keywords='empty project TODO keywords'
)