This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
dyns/setup.py

18 lines
417 B
Python

from setuptools import find_packages, setup
setup(
name='DyNS',
version='0.1',
description='Dynamic Nameserver Configuration UI',
author='Dustin C. Hatch',
author_email='dustin@hatch.name',
url='https://bitbucket.org/AdmiralNemo/dyns',
license='GPL-3',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=[
'Milla',
'SQLAlchemy',
],
)