-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (39 loc) · 1.64 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (39 loc) · 1.64 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
47
"""OpenRange installer"""
# -----------------------------------------------------------------------------
from codecs import open
from os import pardir, path
from setuptools import setup, find_packages
# -----------------------------------------------------------------------------
DESCRIPTION = "OpenRange provides a simple interface for building " + \
"custom arithmetic progression objects. Quickly create " + \
"range-like generators for any objects that can be " + \
"represented numerically."
# path to this file's directory
PROJECT_ROOT = path.normpath(path.join(path.abspath(__file__), pardir))
with open(path.join(PROJECT_ROOT, 'README.rst'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
# -----------------------------------------------------------------------------
setup(
author="Josh Tomlinson",
author_email="joshetomlinson@gmail.com",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
description=DESCRIPTION,
install_requires=['six>=1.9'],
keywords="openrange range interval progression",
license='MIT',
long_description=LONG_DESCRIPTION,
name='openrange',
packages=find_packages(),
url="https://github.com/josh-t/openrange",
version='1.1.0',
)