You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
413 B
Python
18 lines
413 B
Python
7 years ago
|
from setuptools import setup, find_packages
|
||
|
|
||
|
with open('requirements.txt') as f:
|
||
|
requirements = [requirement for requirement in f]
|
||
|
|
||
|
|
||
|
setup(
|
||
|
name='cookiedb',
|
||
|
version='0.1.0',
|
||
|
description='A sample domain model to be used for toy applications',
|
||
|
packages=find_packages(),
|
||
|
author='Drew Bednar',
|
||
|
author_email='drew@androiddrew.com',
|
||
|
install_requires=requirements,
|
||
|
license='MIT',
|
||
|
)
|
||
|
|