forked from usnistgov/SDNist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.14 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
from setuptools import setup, find_packages
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='sdnist',
version='1.3.2',
description='SDNist: datasets and evaluation tools for data synthesizers',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/usnistgov/SDNist',
author='National Institute of Standards and Technology',
author_email='[email protected]',
packages=["sdnist", "sdnist.challenge", "sdnist.preprocess"],
# data_files=[('', ['sdnist/report2.jinja2'])],
install_requires=[
"requests>=2",
"numpy>=1",
"pandas>=1",
"matplotlib>=3",
"pyarrow>=6",
"tqdm>=4",
"loguru>=0.5",
"jinja2>=2"],
classifiers=['Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.8',
'License :: Other/Proprietary License',
'Intended Audience :: Science/Research'],
include_package_data=True
)