This repository has been archived by the owner on Mar 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (50 loc) · 1.87 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
44
45
46
47
48
49
50
51
52
53
54
55
# -*- coding: utf-8 -*-
# DO NOT EDIT THIS FILE!
# This file has been autogenerated by dephell <3
# https://github.com/dephell/dephell
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os.path
readme = ''
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, 'README.rst')
if os.path.exists(readme_path):
with open(readme_path, 'rb') as stream:
readme = stream.read().decode('utf8')
setup(
long_description=readme,
name='miniencoding',
version='2020.1',
description='Ascii representations. Stores ascii as a bitarray in ascii8 form',
python_requires='==3.*,>=3.4.0',
project_urls={
"documentation":
"https://github.com/FHPythonUtils/MiniEncoding/blob/master/README.md",
"homepage":
"https://github.com/FHPythonUtils/MiniEncoding",
"repository":
"https://github.com/FHPythonUtils/MiniEncoding"
},
author='FredHappyface',
classifiers=[
'Environment :: Console', 'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers', 'Intended Audience :: Education',
'License :: OSI Approved :: MIT License', 'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
],
packages=['MiniEncoding'],
package_dir={"": "."},
package_data={},
install_requires=['bitstring==3.*,>=3.1.7'],
)