-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
43 lines (36 loc) · 1.1 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
# -*- coding: utf-8 -*-
"""setup.py: setuptools control"""
import re
from setuptools import setup, find_packages
version = re.search(
'^__version__\s*=\s*"(.*)"',
open('harwest/__init__.py').read(),
re.M
).group(1)
with open("README.md", "rb") as f:
long_descr = f.read().decode("utf-8")
with open('requirements.txt') as f:
install_requires = f.read().splitlines()
setup(
name="harwest",
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": ['harwest = harwest.harwest:main']
},
install_requires=install_requires,
version=version,
description="Harvest code submissions from different platforms to git",
long_description=long_descr,
long_description_content_type="text/markdown",
author="Nilesh Sah",
author_email="[email protected]",
zip_safe=False,
url="https://github.com/nileshsah/harwest-tool",
python_requires='>=3.5',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)