-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (40 loc) · 1.48 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import io
import os
from setuptools import setup
version_txt = os.path.join(os.path.dirname(__file__), 'fenwick', 'version.txt')
with open(version_txt, 'r') as f:
version = f.read().strip()
with io.open('README.rst', encoding='utf8') as f:
long_description = f.read()
setup(
name='fenwick',
packages=['fenwick'],
package_data={'fenwick': ['version.txt']},
license='MIT',
version=version,
description='A Python implementation of Fenwick trees',
long_description=long_description,
author='Daniel Steinberg',
author_email='[email protected]',
url='https://github.com/dstein64/fenwick',
keywords=['fenwick', 'binary-index-tree', 'fenwick-tree'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
)