-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
61 lines (50 loc) · 1.61 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
version = '0.0.3w0'
# Versions Labeling: #
# #
# Alpha 0.0.1a1 #
# Beta 0.0.1b1 #
# Production 0.0.1 #
# Snapshot 0.0.1w1 #
import pathlib
from setuptools import setup, find_packages
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding = 'utf-8') # Get the long description from the README file
setup(
name = 'nateve-adam',
version = version,
license='MIT',
description = 'Nateve transpiler developed with python 3.8',
author = 'Emmanuel Norambuena',
author_email = 'eanorambuena@uc.cl',
long_description = long_description,
long_description_content_type = 'text/markdown',
url = 'https://github.com/NateveLang/Adam',
download_url = f'https://github.com/NateveLang/Adam/archive/v{version}.tar.gz',
keywords = "development, quantum computing, programming language, nateve, natevelang, nate, education".split(", "),
install_requires = [
'eggdriver',
'qiskit',
],
packages = find_packages(),
python_requires = '>=3.5, <=3.8',
include_package_data = True,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
project_urls = {
'Bug Reports': 'https://github.com/NateveLang/Adam/issues',
'Source': 'https://github.com/NateveLang/Adam',
},
entry_points = {
'console_scripts': [
'adam = adam.app:main',
],
},
)