-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (48 loc) · 1.63 KB
/
setup.py
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# import setuptools
#
# with open("requirements.txt") as f:
# requirements = f.read().splitlines()
#
# with open("README.md", "r") as fh:
# long_description = fh.read()
#
# setuptools.setup(
# name="mc_automation_tools",
# author="MC",
# description="Map colonies automation infrastructure kit tools for mutual purpose",
# long_description=long_description,
# long_description_content_type="text/markdown",
# url="https://github.com/MapColonies/automation-kit.git",
# packages=setuptools.find_packages(),
# install_requires=requirements,
# use_scm_version=True,
# setup_requires=["setuptools_scm"],
# classifiers=[
# "Programming Language :: Python :: 3",
# "License :: OSI Approved :: MIT License",
# "Operating System :: OS Independent",
# ],
# python_requires=">=3.6",
# )
from setuptools import setup, find_packages
with open("requirements.txt") as f:
requirements = f.read().splitlines()
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="mc_automation_tools",
author="MC",
description="Map colonies automation infrastructure kit tools for mutual purpose",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MapColonies/automation-kit.git",
packages=find_packages(),
install_requires=requirements,
version="1.2.67", # Set the version to the desired tag
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)