-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (25 loc) · 1.01 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
from setuptools import setup
setup(
name = "franges",
version = "1.0.2",
author = "Nisan Haramati",
author_email = "hanisan@gmail.com",
description = ("Franges adds support for floating point and fixed precision (Decimal) range generator functions."),
license = "LGPLv3+",
maintainer = "Nisan Haramati",
url = "https://github.com/nisanharamati/franges",
packages=['franges',],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries',
],
)