forked from JZTischler/srange
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·50 lines (44 loc) · 1.46 KB
/
setup.py
File metadata and controls
executable file
·50 lines (44 loc) · 1.46 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
48
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
import sys
import versioneer
version = versioneer.get_version()
license='Argonne National Laboratory Open-Source License'
long_description = '''
This class provides functions to convert a string representing integers and
ranges of integers to an object which can be iterated over all the values
contained in the string and a list of individual values or subranges can be
retrieved.
'''
# remove newlines from long_description
long_description = long_description.replace("\n", " ")
setup(
name='srange',
version=version,
cmdclass=versioneer.get_cmdclass(),
license=license,
description='Class to express integer ranges in a string format',
long_description=long_description,
author='Jon Tischler, Christian M. Schlepuetz',
author_email='[email protected]',
url='https://github.com/schlepuetz/srange',
download_url='no-URL-yet',
platforms='any',
test_suite="tests",
package_dir={'': '.'},
packages=find_packages('.'),
requires=['numpy'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering'
],
)