-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 840 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 840 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
from setuptools import setup, find_packages
# Read dependencies from requirements.txt
def read_requirements():
with open("requirements.txt") as f:
return f.read().splitlines()
setup(
name="dapytains",
version="0.0.1a5",
author="Thibault Clérice",
author_email="thibault.clerice@inria.fr",
description="A brief description of dapytains",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/distributed-text-services/MyDapytains",
packages=find_packages(),
install_requires=read_requirements(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
include_package_data=True,
)