-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1007 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 1007 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
29
30
31
from setuptools import setup, find_packages
versiontext = open('VERSION').read().strip()
licensetext = open('LICENSE').read().strip()
setup(
name='xkye',
version=versiontext,
license=licensetext,
author='Rahman Ansari',
author_email='iamrahmanansari@gmail.com',
url='https://github.com/RahmanAnsari/',
description='Official Python Standard Library for Xkye Language',
long_description=open('README.rst').read().strip(),
packages=find_packages(),
install_requires=[
# put packages here
'antlr4-python3-runtime',
'multipledispatch',
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)