-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (20 loc) · 1.17 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
# Read requirements.txt
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='analog_daddy', # Name of your package
version='0.1', # Start with a small number and increase it with every change you make
packages=find_packages(exclude=['tests*']), # This will find all the packages in your project
url='git@github.com:siddhantladdha/analog_daddy.git', # Your code's website, e.g., the GitHub repo
license='AGPLv3', # Choose a license
author='Siddhant Laddha', # Your name
author_email='work@siddhantladdha.com', # Your email
description='This library is an attempt to make transistor sizing for Analog Design less painful.', # Short description
long_description=open('README.md').read(), # Long description, typically put the contents of your README file
long_description_content_type='text/markdown', # If you use markdown for your README
install_requires=required, # Add all your dependencies here. You can specify versions as well.
classifiers=[
# Add more classifiers if necessary. Check https://pypi.org/classifiers/ for a list of all classifiers.
],
)