-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 970 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 970 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
# -*- coding: utf-8 -*-
"""Setup configuration."""
from setuptools import find_packages
from setuptools import setup
setup(
name="change_this_to_name_of_package",
version="0.1",
description="CREATE A DESCRIPTION",
url="https://github.com/CuriBio/CHANGE_THIS_TO_NAME_OF_REPO",
author="Curi Bio",
author_email="contact@curibio.com",
license="MIT",
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=['importlib-metadata ~= 1.0 ; python_version < "3.8"'],
zip_safe=False,
include_package_data=True,
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
],
)