-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
33 lines (30 loc) · 993 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
from setuptools import setup, find_packages
from blogs import __version__
def readfile(filename):
return open(filename, 'r').read()
print(__version__)
long_description = readfile('README.md')
setup(
version=__version__,
name='djangoblogs',
description='Django blogging with medium style editor',
long_description=long_description,
url='https://github.com/arjunsinghy96/djangoblogs',
author='Arjun Singh Yadav',
author_email='[email protected]',
license='MIT',
keywords='django blogs medium blog',
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
],
packages=find_packages(exclude=['blogs.tests', 'config']),
install_requires=[
'django>=2.0'
]
)