forked from Terseus/python-io-chunks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (31 loc) · 934 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from codecs import open
from os import path
import sys
HERE = path.abspath(path.dirname(__file__))
sys.path.append(path.join(HERE, 'io_chunks'))
import _io_chunks_meta as app_meta # noqa
# Get the long description from the README file
def get_long_description():
with open(path.join(HERE, 'README.rst'), encoding='utf-8') as f:
return f.read()
setup(
name=app_meta.NAME,
version=app_meta.VERSION_STR,
author=app_meta.AUTHOR,
author_email=app_meta.AUTHOR_EMAIL,
license=app_meta.LICENSE,
description=app_meta.DESCRIPTION,
long_description=get_long_description(),
classifiers=app_meta.CLASSIFIERS,
keywords=app_meta.KEYWORDS,
packages=find_packages(exclude=['docs', 'tests', 'venv']),
url=app_meta.URL,
install_requires=[
'six'
],
extras_require={
'test': 'nose',
},
)