-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
19 lines (18 loc) · 981 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
setup(
name="intrepydd", # Name of the package
version="0.1.13", # Version
author="Tong Zhou", # Your name
author_email="[email protected]", # Your email
description="An implementation of the Intrepydd compiler", # Short description
long_description=open("README.md").read(), # Long description from README file
long_description_content_type="text/markdown", # Type of the long description
url="https://github.com/habanero-lab/intrepydd", # URL of your project repository
packages=find_packages(), # Automatically find the packages in your project
classifiers=[
"Programming Language :: Python :: 3", # Classifiers help users find your project
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6', # Minimum Python version requirement
)