-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (28 loc) · 1010 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
from pathlib import Path
from setuptools import find_packages, setup
TOPLEVEL = Path(__file__).parent.resolve()
setup(
name='tomek',
packages=find_packages(),
include_package_data=True,
version='0.3',
description='Need more Tomek in your Django?',
long_description=(TOPLEVEL / 'README.md').read_text(encoding='utf8'),
long_description_content_type="text/markdown",
author='Marc Tamlyn',
author_email='[email protected]',
url='https://github.com/mjtamlyn/tomek',
license='BSD',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)