-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.04 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, find_packages
PACKAGE_NAME = "pyrla"
setup(
name=PACKAGE_NAME,
use_scm_version={
"fallback_version": "0.1.0",
},
packages=find_packages(),
setup_requires=[
'setuptools_scm',
'jinja2',
],
author='Lorenzo Rovigatti',
author_email='[email protected]',
url='https://github.com/lorenzo-rovigatti/pyrla',
description='A simple tool to launch multiple processes ',
long_description=open("./README.md", 'r').read(),
long_description_content_type="text/markdown",
license='GNU GPL 3.0',
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
entry_points = {
'console_scripts': ['pyrla=pyrla:main'],
},
include_package_data=True,
)