-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 1016 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
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# Arguments marked as "Required" below must be included for upload to PyPI.
# Fields marked as "Optional" may be commented out.
setup(
name='quantica',
version='beta-rc1.0',
description='A Python framework implemeting Petri Networks',
url='https://github.com/s4hri/quantica',
download_url='https://github.com/s4hri/quantica/archive/beta-rc1.0.tar.gz',
author='Davide De Tommaso',
author_email='[email protected]',
keywords=['petri','networks','python3.8'],
packages=find_packages(),
install_requires=["pykron>=0.13"],
classifiers = [
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
python_requires='>=3.8',
)