-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 703 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 703 Bytes
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
import os
# For guidance on setuptools best practices visit
# https://packaging.python.org/guides/distributing-packages-using-setuptools/
project_name = os.getcwd().split("/")[-1]
version = "0.1.0"
package_description = "<Provide short description of package>"
url = "https://github.com/ai2es/" + project_name
# Classifiers listed at https://pypi.org/classifiers/
classifiers = ["Programming Language :: Python :: 3"]
setup(name="ai2estemplate", # Change
version=version,
description=package_description,
url=url,
author="AI2ES",
license="CC0 1.0",
classifiers=classifiers,
packages=find_packages(include=["src"]))