-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (31 loc) · 1.05 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
from setuptools import setup
setup(
name='rvg',
version='0.1.11',
description='random values generator',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
author='Sotiris Niarchos',
author_email='sot.niarchos@gmail.com',
url='https://github.com/zehanort/rvg',
download_url='https://github.com/zehanort/rvg/releases',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
],
install_requires=['numpy'],
python_requires='>=3.5',
packages=['rvg', 'rvg.numpyrvg'],
entry_points={
'console_scripts': ['rvg=rvg.cli:cli']
}
)