-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.29 KB
/
setup.py
File metadata and controls
38 lines (36 loc) · 1.29 KB
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
from setuptools import setup
setup(
name='rawdata',
version='0.1.0',
author='Duncan Murray',
author_email='djmurray@acutesoftware.com.au',
packages=['rawdata'],
include_package_data = True,
package_data = {
# If any package contains *.txt files, include them:
'': ['*.txt'],
# And include any files found in the 'data' subdirectory
# of the 'rawdata' package, also:
'rawdata': ['data/*.*'],
},
url='https://github.com/acutesoftware/rawdata',
license='GNU General Public License v3 (GPLv3)',
description='Generate realistic raw datasets with optional DQ issues',
long_description=open('README.rst').read(),
install_requires=[
'nose >= 1.0',
],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Games/Entertainment :: Simulation',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)