forked from Niklas9/django-unixdatetimefield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 926 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
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name='django-unixdatetimefield',
version='1.0.2',
author='Niklas Andersson',
author_email='[email protected]',
description='UnixDateTimeField in Django',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Niklas9/django-unixdatetimefield',
zip_safe=False,
install_requires=[
'django',
],
tests_require=[
'psycopg2',
'django-nose',
],
packages=setuptools.find_packages(),
#test_suite='runtests.runtests',
include_package_data=True,
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development"
],
)