-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
46 lines (38 loc) · 1.18 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
import codecs
import os.path
from setuptools import find_packages, setup
HERE = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
return codecs.open(os.path.join(HERE, *parts), 'r').read()
def get_dependencies():
with open("requirements.txt", encoding="utf-8") as fh:
return fh.read().splitlines()
setup(
name='ovds_utils',
version='0.3.1',
author="Michal Murawski",
author_email="[email protected]",
description="Utilities package for Open VDS.",
long_description=read('README.md'),
long_description_content_type="text/markdown",
url="https://github.com/micmurawski/ovds-utils/",
package_dir={"": "src"},
packages=find_packages(
where="./src",
exclude=(
'build',
'tests',
)
),
install_requires=get_dependencies(),
include_package_data=True,
python_requires=">=3.7,<4.0",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
],
)