-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (47 loc) · 1.44 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
#! /usr/bin/env python
# -*- coding: utf-8 -*-
#
# >>
# cfc, 2021
# Blake VandeMerwe <blake@vidangel.com>
# <<
import setuptools
with open('README.md', 'r') as fp:
long_description = fp.read()
with open('requirements.txt', 'r') as fp:
requirements = [o.strip() for o in fp.read().split('\n')]
setuptools.setup(
name='cfc',
version='0.1.1',
python_requires=">=3.8",
author="Blake VandeMerwe",
author_email='blakev@null.net',
license='MIT',
url='https://github.com/blakev/cfc',
project_urls={
'Bug Tracker': 'https://github.com/blakev/cfc/issues',
},
description='Small utility to keep cache folders under control',
long_description=long_description,
long_description_content_type='text/markdown',
packages=setuptools.find_packages(where="cfc"),
entry_points={
'console_scripts': ['cfc=cfc.__main__'],
},
zip_safe=False,
include_package_data=True,
install_requires=requirements,
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Typing :: Typed",
],
)