forked from oekosheri/GB_code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 663 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 663 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
packages = [
'gb_code',
]
INSTALL_REQUIRES = (
['numpy >= 1.14.0'] )
setup(
name='GB_code',
python_requires='>3.5.1',
version='1.0.0',
author='R.Hadian',
author_email='shahrzadhadian@gmail.com',
packages=packages,
install_requires=INSTALL_REQUIRES,
entry_points = {
'console_scripts': [
'csl_generator = gb_code.csl_generator:main',
'gb_generator = gb_code.gb_generator:main',
],
},
url='https://github.com/oekosheri/GB_code',
license='LICENSE',
description='A GB generation code',
long_description=open('README.md').read(),
)