-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 801 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 801 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
from setuptools import setup, find_packages
setup(
name='datasetter',
version='0.0.0',
description='Create & share your datasets with python.',
author='Martin Journois',
url='https://github.com/BibMartin/datasetter',
packages=find_packages(include=['datasetter', 'datasetter.*']),
install_requires=[
'numpy',
'pandas',
'fastapi',
'requests',
'uvicorn',
'python-forge',
],
# extras_require={'plotting': ['matplotlib>=2.2.0', 'jupyter']},
setup_requires=[
'pytest-runner',
'flake8',
],
tests_require=[
'pytest',
],
# entry_points={'console_scripts': ['my-command=exampleproject.example:main']},
# package_data={'exampleproject': ['data/schema.json']},
)