-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1021 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
36
37
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='hizashi-utils',
version='0.4.1',
author='Dražen Odobašić',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
scripts=['hizashi_utils/bin/hizashi.py'],
url='https://github.com/dodobas/hizashi-utils',
keywords='django hizashi utils helpers',
license='LICENSE.txt',
description='Utils for managing Django Hizashi environment',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities'
],
setup_requires=[
"setuptools_git >= 0.3"
],
install_requires=[
"Django >= 1.7,<1.8"
]
)