-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
32 lines (27 loc) · 940 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 setuptools import setup, find_packages
pkj_name = 'likes'
with open('requirements.txt') as f:
requires = f.read().splitlines()
setup(
name='django-ok-likes',
version='0.7.4',
description='Django likes app',
long_description=open('README.rst').read(),
author='Oleg Kleschunov',
author_email='[email protected]',
url='https://github.com/LowerDeez/ok-likes',
packages=[pkj_name] + [pkj_name + '.' + x for x in find_packages(pkj_name)],
include_package_data=True,
license='MIT',
install_requires=requires,
classifiers=[
'Environment :: Web Environment',
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
'Intended Audience :: Developers',
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
)