-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (39 loc) · 1.25 KB
/
setup.py
File metadata and controls
46 lines (39 loc) · 1.25 KB
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
#!/usr/bin/env python
# coding=utf-8
import os
from setuptools import find_packages, setup
__version__ = "0"
with open("pyseaweed/version.py") as f:
exec(f.read())
LICENSE = (
open(os.path.join(os.path.dirname(__file__), "LICENSE")).read().strip()
)
DESCRIPTION = (
open(os.path.join(os.path.dirname(__file__), "README.rst")).read().strip()
)
required_packages = ["requests", "six"]
setup(
name="pyseaweed",
version=__version__,
description="Module to simplify usage of SeaweedFS in python.",
author="Łukasz Bołdys",
author_email="mail@utek.pl",
license=LICENSE,
long_description=open("README.rst").read(),
url="https://github.com/utek/pyseaweed",
packages=find_packages(),
include_package_data=True,
test_suite="pyseaweed",
install_requires=required_packages,
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)