-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 793 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (25 loc) · 793 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
# TODO: Fix the configs in this part
name='adhoccomputing',
version='2.1.8',
description="Ad Hoc Computing Library",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/cengwins/ahc',
author='CengWins',
author_email='ahc@ceng.metu.edu.tr',
license='GPL V3',
packages=find_packages(),
project_urls={
"Bug Tracker": "https://github.com/cengwins/ahc/issues",
"Simulator Website": "https://ahc.ceng.metu.edu.tr"
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
)