-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 713 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (28 loc) · 713 Bytes
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
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
with open('README.md') as readme:
long_description = readme.read()
INSTALL_REQUIRES = [
'django',
'django-extensions',
'six',
]
CLASSIFIERS = [
'Environment :: Web Environment',
'Framework :: Django',
]
setup(
name='vpms',
version='XXX',
author='Moshe Nahmias',
author_email='Moshe Nahmias <moshegrey@gmail.com>',
packages=find_packages(),
include_package_data=True,
url='https://github.com/moshe742/vpms',
license='AGPLv3+',
description='XXX',
long_description=long_description,
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIRES,
)