-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 978 Bytes
/
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
from setuptools import setup, find_packages
from pathlib import Path
import ast
VERSION = ast.literal_eval((Path(__file__).parent / 'src' / 'betterdicts' / 'VERSION.py').open('r').read().split('=')[1].strip())
setup(
name='betterdicts',
description='Better dictionary types for Python.',
version=VERSION,
long_description_content_type='text/markdown',
long_description=open('README.md', 'r').read(),
author='Frank S. Hestvik',
author_email='[email protected]',
install_requires=[],
url='https://gitlab.com/franksh/betterdicts',
license='Apache-2.0',
keywords=["dict", "prelude", "utility", "convenience"],
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Topic :: Utilities",
],
packages=find_packages('src'),
package_dir={'': 'src'},
python_requires='>=3.8',
# zip_safe=False,
# package_data={
# 'betterdicts': ['VERSION'],
# },
# include_package_data=True,
)