-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 907 Bytes
/
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
def readme():
with open('README.md') as f:
return f.read()
setup(
name = 'pydatagen',
version = '0.1.39',
description = 'Random data generator library in Python',
long_description = 'Create random data easier with pydatagen.',
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Intended Audience :: Education',
'Programming Language :: C',
'Programming Language :: C++',
'Programming Language :: Pascal',
'Programming Language :: Python',
],
keywords = 'data generator oi',
url = 'https://github.com/jeffswt/pydatagen',
author = 'jeffswt',
author_email = '',
license = 'LGPLv3',
packages = [
'pydatagen',
],
install_requires = [
],
entry_points = {
},
)