-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 843 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 843 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import pycongress
setup(
name="pycongress",
author="Marcos Gabarda",
author_email="hey@marcosgabarda.com",
version=pycongress.__version__,
description="A collection of Django apps for a conference website.",
long_description=open('README.rst', 'r').read(),
url="https://github.com/pythonvlc/django-pycongress",
packages=find_packages(),
include_package_data=True,
classifiers=(
"Development Status :: 1 - Planning",
"Programming Language :: Python",
"Framework :: Django",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
),
install_requires=open('requirements.txt', 'r').read().splitlines(),
)